home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Very Best of Atari Inside
/
The Very Best of Atari Inside 1.iso
/
mint
/
mntlib43
/
mntlib
/
strlwr.c
< prev
next >
Wrap
C/C++ Source or Header
|
1993-07-06
|
300b
|
20 lines
#include <ctype.h>
#include <string.h>
char *strlwr(string)
register char *string;
{
register char *p = string;
if(p)
{
while(*string)
{
if(isupper(*string))
*string = tolower(*string);
++string;
}
}
return(p);
}